home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000356_news@columbia.edu _Tue Jun 6 13:08:53 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id NAA06810
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 6 Jun 2000 13:08:53 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA15381
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 6 Jun 2000 13:08:51 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA20789
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 6 Jun 2000 12:59:04 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Transfer text files without a protocol - thank you
  14. Date: 6 Jun 2000 16:59:02 GMT
  15. Organization: Columbia University
  16. Message-ID: <8hjakm$k9j$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <8hj7c0$5qu$1@nnrp1.deja.com>,
  20. Mr. Scott  <scott_davis@my-deja.com> wrote:
  21. : By the way, is the only way to get characters read using INPUT into a
  22. : variable to use \v(input).
  23. :
  24. Yes.  But you still have a lot of flexibility.  For example, you can do
  25. line-oriented INPUTs as illustrated in:
  26.  
  27.   ftp://kermit.columbia.edu/kermit/scripts/ckermit/timestamp
  28.  
  29. Then you can assign each line to the variable of your choice, or to an
  30. array element, etc.  By the way, the URL is to a particular script file
  31. in the scripts library, which you can find here:
  32.  
  33.   http://www.columbia.edu/kermit/scriptlib.html
  34.  
  35. : And is there a way to use INPUT such that
  36. : you say "input all characters possible without a timeout until the
  37. : device buffer is empty"?  In other words, "read until the device buffer
  38. : is empty"...
  39. In C-Kermit 7.0 and K95 1.1.19 and later, yes:
  40.  
  41.   http://www.columbia.edu/kermit/ckermit2.html#x7.1.1
  42.  
  43. - Frank